home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacHack 1997
/
MacHack 1997.toast
/
Hacks
/
Hacks ’96
/
DragClick
/
Sources
/
GestaltStuff.h
< prev
next >
Wrap
Text File
|
1996-06-21
|
381b
|
22 lines
#ifndef __GESTALTSTUFF__
#define __GESTALTSTUFF__
#ifndef __GESTALT__
#include <Gestalt.h>
#endif
extern Boolean gHasProcessMgr;
Boolean HasProcessMgr();
Boolean HasGestaltAttribute(OSType attr, short itsBit);
inline Boolean HasProcessMgr()
{
if (!gHasProcessMgr)
gHasProcessMgr = HasGestaltAttribute(gestaltOSAttr, gestaltLaunchControl);
return gHasProcessMgr;
}
#endif